home *** CD-ROM | disk | FTP | other *** search
- package sun.awt;
-
- import java.nio.charset.Charset;
- import java.nio.charset.CharsetDecoder;
- import java.nio.charset.CharsetEncoder;
-
- public class Symbol extends Charset {
- public Symbol() {
- super("Symbol", (String[])null);
- }
-
- public CharsetEncoder newEncoder() {
- return new Encoder(this);
- }
-
- public CharsetDecoder newDecoder() {
- throw new Error("Decoder is not implemented for Symbol Charset");
- }
-
- public boolean contains(Charset var1) {
- return var1 instanceof Symbol;
- }
- }
-